home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / mandrake_MDKSA-2002-075.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  112 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. # This plugin text was extracted from Mandrake Linux Security Advisory MDKSA-2002:075
  5. #
  6.  
  7.  
  8. if ( ! defined_func("bn_random") ) exit(0);
  9. if(description)
  10. {
  11.  script_id(13974);
  12.  script_bugtraq_id(4679);
  13.  script_version ("$Revision: 1.3 $");
  14.  script_cve_id("CAN-2002-0374", "CAN-2002-0825");
  15.  
  16.  name["english"] = "MDKSA-2002:075: nss_ldap";
  17.  
  18.  script_name(english:name["english"]);
  19.  
  20.  desc["english"] = "
  21. The remote host is missing the patch for the advisory MDKSA-2002:075 (nss_ldap).
  22.  
  23.  
  24. A buffer overflow vulnerability exists in nss_ldap versions prior to 198. When
  25. nss_ldap is configured without a value for the 'host' keyword, it attempts to
  26. configure itself using SRV records stored in DNS. nss_ldap does not check that
  27. the data returned by the DNS query will fit into an internal buffer, thus
  28. exposing it to an overflow.
  29. A similar issue exists in versions of nss_ldap prior to 199 where nss_ldap does
  30. not check that the data returned by the DNS query has not been truncated by the
  31. resolver libraries to avoid a buffer overflow. This can make nss_ldap attempt to
  32. parse more data than what is actually available, making it vulnerable to a read
  33. buffer overflow.
  34. Finally, a format string bug in the logging function of pam_ldap prior to
  35. version 144 exist.
  36. All users are recommended to upgrade to these updated packages. Note that the
  37. nss_ldap packages for 7.2, 8.0, and Single Network Firewall 7.2 contain the
  38. pam_ldap modules.
  39.  
  40.  
  41. Solution : http://www.mandrakesoft.com/security/advisories?name=MDKSA-2002:075
  42. Risk factor : High";
  43.  
  44.  
  45.  
  46.  script_description(english:desc["english"]);
  47.  
  48.  summary["english"] = "Check for the version of the nss_ldap package";
  49.  script_summary(english:summary["english"]);
  50.  
  51.  script_category(ACT_GATHER_INFO);
  52.  
  53.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  54.  family["english"] = "Mandrake Local Security Checks";
  55.  script_family(english:family["english"]);
  56.  
  57.  script_dependencies("ssh_get_info.nasl");
  58.  script_require_keys("Host/Mandrake/rpm-list");
  59.  exit(0);
  60. }
  61.  
  62. include("rpm.inc");
  63. if ( rpm_check( reference:"nss_ldap-202-1.2mdk", release:"MDK7.2", yank:"mdk") )
  64. {
  65.  security_hole(0);
  66.  exit(0);
  67. }
  68. if ( rpm_check( reference:"nss_ldap-202-1.2mdk", release:"MDK8.0", yank:"mdk") )
  69. {
  70.  security_hole(0);
  71.  exit(0);
  72. }
  73. if ( rpm_check( reference:"nss_ldap-202-1.1mdk", release:"MDK8.1", yank:"mdk") )
  74. {
  75.  security_hole(0);
  76.  exit(0);
  77. }
  78. if ( rpm_check( reference:"pam_ldap-156-1.1mdk", release:"MDK8.1", yank:"mdk") )
  79. {
  80.  security_hole(0);
  81.  exit(0);
  82. }
  83. if ( rpm_check( reference:"nss_ldap-202-1.1mdk", release:"MDK8.2", yank:"mdk") )
  84. {
  85.  security_hole(0);
  86.  exit(0);
  87. }
  88. if ( rpm_check( reference:"pam_ldap-156-1.1mdk", release:"MDK8.2", yank:"mdk") )
  89. {
  90.  security_hole(0);
  91.  exit(0);
  92. }
  93. if ( rpm_check( reference:"nss_ldap-202-1.1mdk", release:"MDK9.0", yank:"mdk") )
  94. {
  95.  security_hole(0);
  96.  exit(0);
  97. }
  98. if ( rpm_check( reference:"pam_ldap-156-1.1mdk", release:"MDK9.0", yank:"mdk") )
  99. {
  100.  security_hole(0);
  101.  exit(0);
  102. }
  103. if (rpm_exists(rpm:"nss_ldap-", release:"MDK7.2")
  104.  || rpm_exists(rpm:"nss_ldap-", release:"MDK8.0")
  105.  || rpm_exists(rpm:"nss_ldap-", release:"MDK8.1")
  106.  || rpm_exists(rpm:"nss_ldap-", release:"MDK8.2")
  107.  || rpm_exists(rpm:"nss_ldap-", release:"MDK9.0") )
  108. {
  109.  set_kb_item(name:"CAN-2002-0374", value:TRUE);
  110.  set_kb_item(name:"CAN-2002-0825", value:TRUE);
  111. }
  112.